#flutter dev
Explore tagged Tumblr posts
normalweirdoboy · 1 year ago
Text
Free Flutter Resources
for whoever might need them
Tumblr media
https://flutter.dev/learn
https://dart.dev/
Flutter Crash Course - Traversy Media
Free Flutter Course (Full Flutter Course for Beginners) - Vandad Nahavandipoor
Fun with Flutter
https://github.com/flutter/samples
I'm currently revising Flutter to teach in my college's robotics society's classes (we are planning to start an app dev domain) and these are a few resources that I found handy, so I thought I'd share(?)
8 notes · View notes
Text
2 notes · View notes
nubecolectiva · 7 months ago
Text
A smart home app crafted using flutter with many animation and traditional with our app you can take control of home digitally !
Una aplicación para el hogar inteligente creada con Flutter con muchas animaciones y elementos tradicionales !
Conoce estas "3 Bootcamps de React JS Gratis en Español":
👉 https://blog.nubecolectiva.com/bootcamp-reactjs/
1 note · View note
softcode9x · 9 months ago
Text
How do I use generics in Dart to create a reusable data structure like a Stack<T>?
Tumblr media
Generics in Dart allow you to create reusable and type-safe data structures and functions. By defining a class or method with a type parameter, you can work with different data types without sacrificing type safety. For example, a generic Stack<T> class can store elements of any type, such as integers, strings, or custom objects, while ensuring that only the specified type is used throughout the stack's operations. This not only makes your code more flexible and reusable but also helps prevent runtime errors by catching type mismatches at compile time. Using generics, you can build robust and versatile components that integrate seamlessly into various parts of your application.
Here's an example implementation of a generic Stack<T> in Dart:
class Stack<T> {
  final List<T> _stack = [];
  void push(T value) {
    _stack.add(value);
  }
  T pop() {
    if (_stack.isEmpty) {
      throw StateError('No elements in the stack');
    }
    return _stack.removeLast();
  }
  T peek() {
    if (_stack.isEmpty) {
      throw StateError('No elements in the stack');
    }
    return _stack.last;
  }
  bool get isEmpty => _stack.isEmpty;
  int get length => _stack.length;
}
Usage Example:
void main() {
  Stack<int> intStack = Stack<int>();
  intStack.push(1);
  intStack.push(2);
  print(intStack.pop()); // Outputs: 2
  Stack<String> stringStack = Stack<String>();
  stringStack.push('hello');
  stringStack.push('world');
  print(stringStack.peek()); // Outputs: 'world'
}
Explanation:
Generic Type <T>: The Stack class is defined with a generic type parameter T, allowing it to store elements of any type.
Internal List: The _stack list holds the stack elements.
Stack Operations: Methods like push, pop, peek, and isEmpty provide standard stack functionality.
Type Safety: Using generics ensures that the stack is type-safe and can be used with any data type.
Hire Me: https://www.fiverr.com/s/GzyjzyZ
-------
Behance Portfolio: https://www.behance.net/susmoydutta
---------------------
Linkedin Profile: https://www.linkedin.com/in/susmoy-dutta/
-----------
1 note · View note
a-lewd-rat · 10 months ago
Text
Reading the canon HDG fics is doing something to my brain.
1 note · View note
digiweb2u · 10 months ago
Text
Tumblr media
0 notes
mrjsdud · 11 months ago
Text
development log 2024/8/2
2024 Digital Future City Gangnam Hackathon Competition preparation
Tumblr media Tumblr media Tumblr media
developing flutter app ::))
any problem?
1 note · View note
devhubspot · 1 year ago
Video
youtube
Awesome Food App UI Design In Flutter | Devhubspot Part 1
0 notes
prismetric-technologies · 1 year ago
Text
Flutter, Google's UI toolkit, is a game-changer for startups. It allows developers to create high-quality mobile apps for iOS and Android simultaneously, saving time and resources. With its hot reload feature, developers can see changes instantly, speeding up the development process. Flutter's rich set of pre-built widgets and customizable designs make it easier to create visually appealing apps, helping startups stand out in a crowded market.
1 note · View note
bbsmitedu · 1 year ago
Text
Tumblr media
Learn Flutter Application Development
Call or WhatsApp:- +91 98287 49889
0 notes
sudarshanvis · 1 year ago
Text
0 notes
gocodesolution · 1 year ago
Text
1 note · View note
california-designer · 2 years ago
Text
We are looking for a Web and Mobile App Developer or Development team that is experienced in the development of Flutter, Laravel, Backend API and React Native apps.
1 note · View note
emma200445 · 2 years ago
Text
UI/UX/AI designing refers to the process of designing digital products such as websites, mobile apps, software, and other digital interfaces with a focus on creating user-friendly and engaging experiences. UI (User Interface) design involves designing the look and feel of a digital product, including the layout, colours, typography, and visual elements. The goal of UI design is to create an aesthetically pleasing and visually appealing interface that is easy to use and understand.
0 notes
uk-website-designer · 2 years ago
Text
Experience cutting-edge digital solutions with our UK-based Web Design, Mobile App, and Web Development Agency. We blend creativity and technology to craft visually stunning websites, user-friendly mobile apps, and robust web applications. Our expert team is dedicated to bringing your digital vision to life, ensuring seamless functionality and optimal user experience. 
0 notes
Text
SaaS Development Services in Europe – Europe Website Designer
At Europe Website Designer, we specialize in SaaS development services to help businesses build scalable, secure, and high-performance cloud-based applications. Our expert developers create custom SaaS solutions tailored to your business needs, ensuring seamless user experience and efficient performance.
Our SaaS Development Services Include:
✔ Custom SaaS Application Development ✔ Cloud-Based Software Solutions ✔ Multi-Tenant Architecture & API Development ✔ UI/UX Design for SaaS Platforms ✔ Third-Party Integration & Automation ✔ Ongoing Maintenance & Support
We help startups and enterprises across Europe transform their ideas into innovative, revenue-generating SaaS products.
Build your SaaS success with us! Contact Europe Website Designer today.
1 note · View note